home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
src
/
creat.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-04
|
181b
|
10 lines
#include "amiga.h"
#include "files.h"
#include <fcntl.h>
int __creat(const char *file, int prot)
{
__chkabort();
return __open(file, O_WRONLY | O_CREAT | O_TRUNC, prot);
}